gdk/directfb/gdkwindow-directfb.c fixed beep compile error
gdk/directfb/Makefile.am removed GDK_PIXBUF_DISABLE_DEPRECATED
GDK_DISABLE_DEPRECATED to allow compile per Behdad
gdk/quartz/Makefile.am same change as directfb Makefile
gtk/Makefile.am fixed typo that cause socket stubs not to compile
+2006-09-13 Michael Emmel <mike.emmel@gmail.com>
+
+ * gdk/directfb/gdkcolor-directfb.c small clean ups include order
+ * gdk/directfb/gdkwindow-directfb.c fixed beep compile error
+ * gdk/directfb/Makefile.am removed GDK_PIXBUF_DISABLE_DEPRECATED
+ GDK_DISABLE_DEPRECATED to allow compile per Behdad
+ * gdk/quartz/Makefile.am same change as directfb Makefile
+ * gtk/Makefile.am fixed typo that cause socket stubs not to compile
+
2006-09-13 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkcolorsel.c: Use a GtkWindow instead of a GtkInvisible
INCLUDES = \
-DG_LOG_DOMAIN=\"Gdk-DirectFB\" \
+ -DGDK_COMPILATION \
-I$(top_srcdir) \
-I$(top_srcdir)/gdk \
-I$(top_builddir)/gdk \
-DG_DISABLE_DEPRECATED \
- -DGDK_PIXBUF_DISABLE_DEPRECATED \
- -DGDK_DISABLE_DEPRECATED \
@GTK_DEBUG_FLAGS@ \
@GDK_DEP_CFLAGS@
#include <stdlib.h>
#include <string.h>
+#include "gdkcolor.h"
+#include "gdkinternals.h"
#include "gdkdirectfb.h"
#include "gdkprivate-directfb.h"
-
-#include "gdkinternals.h"
-
-#include "gdkcolor.h"
#include "gdkalias.h"
private->info[255].ref_count++;
}
-
#define __GDK_COLOR_X11_C__
#include "gdkaliasdef.c"
void
gdk_window_beep (GdkWindow *window)
{
- gdk_display_beep (GDK_WINDOW_DISPLAY (window));
+ gdk_display_beep (gdk_display_get_default());
}
#define __GDK_WINDOW_X11_C__